home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Info-Mac 3
/
Info_Mac_1994-01.iso
/
Development
/
General
/
GCC 1.37.1r15
/
Tests
/
poor-short.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-12-16
|
180b
|
15 lines
/* A function declared as returning a short should be able to just fill in
half of D0. */
short **glob;
short foo(short **x)
{
return **x;
}
main()
{
**glob = foo(glob);
}